home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MRAC / Elements / e-position < prev    next >
Text File  |  1998-08-11  |  318b  |  15 lines

  1. e-position element sequence 
  2.  
  3. 0-based 
  4.  
  5. This function is able to return a list of integers representing all the positions of a defined item within a list.
  6.  
  7. (e-position '2 '(1 2 2 5 2 5 3 2 2 7))
  8. => (1 2 4 7 8)
  9.  
  10. (e-position '(2/16) '((1/16) (2/16) (2/16)))
  11. => (1 2)
  12.  
  13. (e-position 'a '(a b c d a b c a b a))
  14. => (0 4 7 9)
  15.